diff --git a/.gitignore b/.gitignore index 526f524..916a330 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -platformer +switcher *.inc diff --git a/Makefile b/Makefile index 014f008..922a2e9 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .SUFFIXES: .SUFFIXES: .inc .txt -NAME = platformer +NAME = switcher TILES = player_stand_tile.inc \ player_walk1_tile.inc player_walk1_tile_reversed.inc \ player_walk2_tile.inc player_walk2_tile_reversed.inc \ diff --git a/platformer.c b/switcher.c similarity index 99% rename from platformer.c rename to switcher.c index 78e67d8..9f64668 100644 --- a/platformer.c +++ b/switcher.c @@ -480,7 +480,7 @@ int main(int argc, char *argv[]) { if (last_frame.tv_sec != now.tv_sec) { char *title = NULL; - asprintf(&title, "%i fps", fps); + asprintf(&title, "Switcher (%i fps)", fps); display_title_window(connection, main_window, title); free(title); fps = 0;