diff options
author | bd <bdunahu@operationnull.com> | 2025-04-27 13:53:21 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-27 13:53:21 -0400 |
commit | ad0557059bb83da52e1a5bd7ea608a29a4ab6346 (patch) | |
tree | a34dc15e882047ce4d252f1757c622750cb2160c /gui/messages.h | |
parent | c00703033380d68eeff47c40a9c7dc5f8cd7fb1f (diff) |
Use spinboxes to select cache levels
Diffstat (limited to 'gui/messages.h')
-rw-r--r-- | gui/messages.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gui/messages.h b/gui/messages.h index 461c461..0c38751 100644 --- a/gui/messages.h +++ b/gui/messages.h @@ -35,8 +35,6 @@ const std::vector<std::string> load_file = { const std::vector<std::string> no_instructions = { "NO PROGRAM PROVIDED", "NOTHING TO DO, GIVING UP", "INSTRUCTIONS MISSING", "404 INSTRUCTIONS NOT FOUND"}; -const std::vector<std::string> bad_cache = { - "WAYS CANNOT BE BELOW 0 OR ABOVE 4"}; const std::vector<std::string> no_pipeline = { "SIMULATION READY: NO PIPE", "PIPE OFF, SIMULATION READY"}; const std::vector<std::string> no_cache = { @@ -59,7 +57,6 @@ std::string get_load_file() { return RANDOM_MESSAGE(load_file); } * @return a friendly reminder that the simulation is not configured yet */ std::string get_no_instructions() { return RANDOM_MESSAGE(no_instructions); } -std::string get_bad_cache() { return RANDOM_MESSAGE(bad_cache); } /** * @return unsolicited complaints for successful initialization |