Skip to content

Commit

Permalink
set default tile size to 320
Browse files Browse the repository at this point in the history
  • Loading branch information
strippato committed Sep 29, 2018
1 parent 4ad8697 commit fe4542b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion header/app.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#define APP_ID "org.gnome.arcade"
#define APP_NAME "Arcade"
#define APP_DESCRIPTION "the best arcade from '70 '80 '90"
#define APP_VERSION "0.202"
#define APP_VERSION "0.202.1"
#define APP_AUTHOR "Strippato"
#define APP_AUTHOR_EMAIL "[email protected]"
#define APP_LICENSE "This software is distributed under the terms of the\n"\
Expand Down
4 changes: 2 additions & 2 deletions src/blacklist.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ blist_init (void)
while (fgets (buf, sizeof (buf), file)) {

switch (buf[0]) {

// skip
case '#':
case '[':
case '\x0d':
case '\x0a':
case ' ':
case ' ':
break;

default:
Expand Down
4 changes: 2 additions & 2 deletions src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ cfg_fillDefaultConfig (void)
g_hash_table_insert (cfg_default, g_strdup ("CHD_PATH"), g_strdup ("/usr/share/gnome-arcade/data/rom")); // /usr/share/gnome-arcade/data/chd
g_hash_table_insert (cfg_default, g_strdup ("VIDEO_PATH"), g_strdup ("/usr/share/gnome-arcade/data/rom")); // /usr/share/gnome-arcade/data/video

g_hash_table_insert (cfg_default, g_strdup ("TILE_SIZE_W"), g_strdup ("210"));
g_hash_table_insert (cfg_default, g_strdup ("TILE_SIZE_H"), g_strdup ("210"));
g_hash_table_insert (cfg_default, g_strdup ("TILE_SIZE_W"), g_strdup ("320"));
g_hash_table_insert (cfg_default, g_strdup ("TILE_SIZE_H"), g_strdup ("320"));
g_hash_table_insert (cfg_default, g_strdup ("TILE_KEEP_ASPECT_RATIO"), g_strdup ("1"));
g_hash_table_insert (cfg_default, g_strdup ("TILE_TITLE_CENTERED"), g_strdup ("1"));
g_hash_table_insert (cfg_default, g_strdup ("TILE_PATH"), g_strdup ("/usr/share/gnome-arcade/data/tile"));
Expand Down

0 comments on commit fe4542b

Please sign in to comment.