Skip to content

Commit

Permalink
Rename screen files to menu_screens
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightkingale committed May 12, 2024
1 parent 54ab4a5 commit dc338ac
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions include/screen.hpp → include/menu_screens.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef SCREEN_HPP
#define SCREEN_HPP
#ifndef MENU_SCREENS_HPP
#define MENU_SCREENS_HPP


void draw_menu_screen(int selected_menu_item);
Expand Down
2 changes: 1 addition & 1 deletion source/backup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

#include "input.hpp"
#include "main.hpp"
#include "screen.hpp"
#include "menu_screens.hpp"


bool backup_confirm = false;
Expand Down
2 changes: 1 addition & 1 deletion source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include "easter_egg.hpp"
#include "input.hpp"
#include "main.hpp"
#include "screen.hpp"
#include "menu_screens.hpp"
#include "switch.hpp"
#include "unlink.hpp"

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion source/switch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <whb/proc.h>

#include "main.hpp"
#include "screen.hpp"
#include "menu_screens.hpp"


void
Expand Down
2 changes: 1 addition & 1 deletion source/unlink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <whb/proc.h>

#include "main.hpp"
#include "screen.hpp"
#include "menu_screens.hpp"


bool
Expand Down

0 comments on commit dc338ac

Please sign in to comment.