(svn r8936) [cpp_gui] -Fix r8803: change of Point broke compilation of cocoa_v.mm cpp_gui
authorbjarni
Tue, 27 Feb 2007 23:42:47 +0000
branchcpp_gui
changeset 6266 3fa43db5af91
parent 6265 7054c910251d
child 6267 7c8ec33959b1
(svn r8936) [cpp_gui] -Fix r8803: change of Point broke compilation of cocoa_v.mm
src/video/cocoa_v.mm
--- a/src/video/cocoa_v.mm	Tue Feb 27 22:59:55 2007 +0000
+++ b/src/video/cocoa_v.mm	Tue Feb 27 23:42:47 2007 +0000
@@ -1586,7 +1586,7 @@
 }
 
 
-static const OTTDPoint _default_resolutions[] = {
+static const PointRaw _default_resolutions[] = {
 	{ 640,  480},
 	{ 800,  600},
 	{1024,  768},
@@ -1604,7 +1604,7 @@
 {
 	uint i, j, count;
 	OTTDPoint modes[32];
-	const OTTDPoint *current_modes;
+	const PointRaw *current_modes;
 
 	if (_cocoa_video_data.fullscreen) {
 		count = QZ_ListFullscreenModes(modes, 32);