|
From: Lasse Kärkkäi. <tr...@us...> - 2009-11-14 17:23:03
|
Module: performous
Branch: master
Commit: 1e188dba99b4322e35fd4f0c6b65591f44e0aca8
Author: Lasse Karkkainen <tro...@tr...>
Date: Sat Nov 14 19:18:24 2009 +0200
Rename difficulty levels
---
game/guitargraph.cc | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/game/guitargraph.cc b/game/guitargraph.cc
index 60281c5..eff9119 100644
--- a/game/guitargraph.cc
+++ b/game/guitargraph.cc
@@ -11,10 +11,10 @@
namespace {
struct Diff { std::string name; int basepitch; } diffv[] = {
- { "Supaeasy", 0x3C },
- { "Easy", 0x48 },
- { "Medium", 0x54 },
- { "Amazing", 0x60 }
+ { "Easy", 0x3C },
+ { "Medium", 0x48 },
+ { "Hard", 0x54 },
+ { "Expert", 0x60 }
};
const size_t diffsz = sizeof(diffv) / sizeof(*diffv);
|