Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Default saves to ./userdata and replace optional --savehere arg with --saveinos | d0cb1ab86c2110cdc0f2aba19fc3843902d6a5ea | mse | 2022-08-08 11:42:21 |
Enable Chinese image buttons | 3129899ee20ee1821b13db063dcd83477e37c505 | mse | 2022-08-06 04:44:38 |
Expand Chinese translations | 2baa34f7247c32af12480feb801cb41787022115 | mse | 2022-08-04 18:34:02 |
Add VNHACK command | 4539d3931617e58e73b295d6ca3679150acdcf78 | mse | 2022-08-04 06:59:04 |
Refactor FG3 to allow separate compilation | eb1bb8bbc8c60169c2bbd789b38c608b4bb9cbab | mse | 2022-08-03 22:30:45 |
Fix menu bugs and bump to v0.7.11 | ae193263f4b8461c299f6db66f130beae94724cc | mse | 2022-07-07 04:52:30 |
Bump version to 0.7.10 | 5f70f1aba48d3df67d5e4a70d9595e92aeac4afb | mse | 2022-05-11 10:54:09 |
ADV-style text advance | 5fbb734d07a2dcf0162245b5afc6b5b4b9021b6f | mse | 2022-04-12 12:25:24 |
Switch interaction to mouse-up | 345ce8d1ea9755f51365a2676cce0415f9cf68c2 | mse | 2022-04-10 21:07:15 |
Use gradient for text backdrop | 6ad98cdaf4df37e8b24d9c1e8e2f9b0e904da9aa | mse | 2022-04-10 13:04:29 |
Improve vn button highlight | 51b2c6c07b0cfb0efdb8cdf5cbeba49ef54d9ccb | mse | 2022-04-09 06:54:39 |
Darken the screen when drawing a menu with non-VN text | 8f3bcee6d57817ea8c1dd999c68cb129dea1550c | mse | 2022-04-08 16:01:52 |
Upgrade the UI | 45561487af001c5a790343690a792faeb14945d4 | mse | 2022-04-06 23:45:31 |
Progress on getting Emscripten builds working again (almost) | e4276b7823027c7ac3a3afe30c3c30241f1c6642 | mse | 2022-04-01 11:16:56 |
Bump to version 0.7.9 | 1c93b011603bd953df0628fa39c586c11eeb7138 | mse | 2022-03-30 08:31:00 |
Some progress on Android support | dd2d0eb6d4ee42149b605526ce304e67243d90b4 | mse | 2022-03-20 00:28:35 |
Android support (work in progress) | a8f26dd2d83d66fb8e3b634991084fbdc9faa640 | mse | 2022-03-19 20:08:09 |
Add IFGOSUB | db52bc04bac0af4d668696580b1312920a47d9e5 | mse | 2022-03-19 17:11:36 |
Remove Poco from the makefile | e6274074304b40f0eaae0e591acadc604388fbaa | mse | 2022-03-19 17:00:54 |
Disable texture wrapping in VN | 75ed1c845f4643fa4e012f22f5a2bbeacca9d51e | mse | 2022-03-18 21:39:00 |
File | Lines added | Lines deleted |
---|---|---|
confec.cpp | 5 | 5 |
File confec.cpp changed (mode: 100644) (index 9c08069..2f5abcb) | |||
... | ... | int main( int argc, char* argv[] ){ | |
883 | 883 | } | } |
884 | 884 | #endif | #endif |
885 | 885 | ||
886 | bool save_here = false, windowed_mode = false; | ||
886 | bool save_in_os = false, windowed_mode = false; | ||
887 | 887 | ||
888 | 888 | for( int i = 1; i < argc; i++ ){ | for( int i = 1; i < argc; i++ ){ |
889 | 889 | std::string arg( argv[i] ); | std::string arg( argv[i] ); |
... | ... | int main( int argc, char* argv[] ){ | |
895 | 895 | // parameters. | // parameters. |
896 | 896 | mod_paths.insert( mod_paths.begin(), arg.substr( 2 ) ); | mod_paths.insert( mod_paths.begin(), arg.substr( 2 ) ); |
897 | 897 | printf( "Using mod: %s\n", mod_paths[0].c_str() ); | printf( "Using mod: %s\n", mod_paths[0].c_str() ); |
898 | }else if( arg == "--savehere" ){ | ||
899 | save_here = true; | ||
900 | printf( "Using the game folder for saving.\n" ); | ||
898 | }else if( arg == "--saveinos" ){ | ||
899 | save_in_os = true; | ||
900 | printf( "Using an OS folder for saving.\n" ); | ||
901 | 901 | }else if( arg == "--window" ){ | }else if( arg == "--window" ){ |
902 | 902 | windowed_mode = true; | windowed_mode = true; |
903 | 903 | printf( "Starting in windowed mode.\n" ); | printf( "Starting in windowed mode.\n" ); |
... | ... | int main( int argc, char* argv[] ){ | |
917 | 917 | // Default to a local path if there is no system user data folder. | // Default to a local path if there is no system user data folder. |
918 | 918 | user_data_path = "userdata"; | user_data_path = "userdata"; |
919 | 919 | ||
920 | if( !save_here ){ | ||
920 | if( save_in_os ){ | ||
921 | 921 | // Make a user data path based on platform and app name. | // Make a user data path based on platform and app name. |
922 | 922 | #ifdef _WIN32 | #ifdef _WIN32 |
923 | 923 | // Windows. | // Windows. |