widescreen could be more complete you know
can't you use gamesconfig.ini to save specific settings?
ex:
SSBM you could ajust HUD settings
Basic C++ code
float p1_x, p2_x, p3_x, p4_x; //where p1_x is the initial x position of the p1 HUD, p2_x, p3_x and p4_x the same.
p1_x=p1_x-2.50; //moving 2.50 backwards in x position
p2_x=p2_x-1.25; //moving 1.25 backwards in x position
p3_x=p3_x+1.25; //moving 1.25 forward in x position
p4_x=p4_x+2.50; //moving 2.50 forward in x position
something like this would ajust HUD position or other things in some games. Start using gameconfig.ini
can't you use gamesconfig.ini to save specific settings?
ex:
SSBM you could ajust HUD settings
Basic C++ code
float p1_x, p2_x, p3_x, p4_x; //where p1_x is the initial x position of the p1 HUD, p2_x, p3_x and p4_x the same.
p1_x=p1_x-2.50; //moving 2.50 backwards in x position
p2_x=p2_x-1.25; //moving 1.25 backwards in x position
p3_x=p3_x+1.25; //moving 1.25 forward in x position
p4_x=p4_x+2.50; //moving 2.50 forward in x position
something like this would ajust HUD position or other things in some games. Start using gameconfig.ini
