For version 1.02 - if you want to make the games show up in ALPHABETICAL order rather than install order, do this:
Open arcade.php,
Find:
PHP Code:
// Selects all games from the database
$result_allgames = $DB_site->query("
SELECT * FROM " . TABLE_PREFIX . "games $searchclause ORDER BY gameid DESC
");
Replace with:
PHP Code:
// Selects all games from the database
$result_allgames = $DB_site->query("
SELECT * FROM " . TABLE_PREFIX . "games $searchclause ORDER BY shortname ASC
");
That should make things a bit more logical, if you ask me.