diff options
author | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-02-28 22:24:59 +0000 |
---|---|---|
committer | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-02-28 22:24:59 +0000 |
commit | f96f2467acced6ac12e328c940a818edd74a718b (patch) | |
tree | ab16983a9af22a8d45a7e97e61a7e8af636f222e /src | |
parent | cb2a7d2226338a26b4b77a1b08041d2bf7770fa4 (diff) | |
download | usdx-f96f2467acced6ac12e328c940a818edd74a718b.tar.gz usdx-f96f2467acced6ac12e328c940a818edd74a718b.tar.xz usdx-f96f2467acced6ac12e328c940a818edd74a718b.zip |
some cosmetic changes
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1612 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src')
-rw-r--r-- | src/base/UMusic.pas | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/base/UMusic.pas b/src/base/UMusic.pas index 09d73331..eee271a8 100644 --- a/src/base/UMusic.pas +++ b/src/base/UMusic.pas @@ -39,10 +39,14 @@ uses Classes; type - TNoteType = (ntFreestyle = 0, ntNormal = 1, ntGolden = 2); + TNoteType = (ntFreestyle, ntNormal, ntGolden); const - //Score Factor + // ScoreFactor defines how a notehit of a specified notetype is + // measured in comparison to the other types + // 0 means this notetype is not rated at all + // 2 means a hit of this notetype will be rated w/ twice as much + // points as a hit of a notetype w/ ScoreFactor 1 ScoreFactor: array[TNoteType] of integer = (0, 1, 2); type |