src/settings_gui.cpp
branchnoai
changeset 11044 097ea3e7ec56
parent 10867 5de2923d6e59
child 11098 37d15a8951b8
--- a/src/settings_gui.cpp	Sat Jun 21 13:35:29 2008 +0000
+++ b/src/settings_gui.cpp	Sat Jun 21 13:40:17 2008 +0000
@@ -93,8 +93,8 @@
 	int i;
 
 	for (i = 0; i != _num_resolutions; i++) {
-		if (_resolutions[i][0] == _screen.width &&
-				_resolutions[i][1] == _screen.height) {
+		if (_resolutions[i].width == _screen.width &&
+				_resolutions[i].height == _screen.height) {
 			break;
 		}
 	}
@@ -302,7 +302,7 @@
 				break;
 
 			case GAMEOPT_RESOLUTION_BTN: // Change resolution
-				if (index < _num_resolutions && ChangeResInGame(_resolutions[index][0], _resolutions[index][1])) {
+				if (index < _num_resolutions && ChangeResInGame(_resolutions[index].width, _resolutions[index].height)) {
 					this->SetDirty();
 				}
 				break;