From: Spacy <sp...@us...> - 2006-07-31 15:51:05
|
Update of /cvsroot/vba/VisualBoyAdvance/src/sdl In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv28465/src/sdl Modified Files: SDL.cpp Log Message: Added aspect ratio correct scaling to Direct3D (triggered by !theApp.fullScreenStretch) ReAdded texture filtering support to Direct3D. Removed remaining code pieces of flash size enhancedDetection. Changed some default settings Index: SDL.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/sdl/SDL.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** SDL.cpp 6 Jun 2006 21:04:20 -0000 1.14 --- SDL.cpp 31 Jul 2006 15:51:01 -0000 1.15 *************** *** 1209,1214 **** rewindTimer = 0; rewindTimer *= 6; // convert value to 10 frames multiple - } else if(!strcmp(key, "enhancedDetection")) { - cpuEnhancedDetection = sdlFromHex(value) ? true : false; } else { fprintf(stderr, "Unknown configuration key %s\n", key); --- 1209,1212 ---- *************** *** 2250,2257 **** failed = (size == 0); if(!failed) { - // if(cpuEnhancedDetection && cpuSaveType == 0) { - // utilGBAFindSave(rom, size); - // } - sdlApplyPerImagePreferences(); --- 2248,2251 ---- |