From ce7dfcca1554b2b7e71ac279c779a081a4977147 Mon Sep 17 00:00:00 2001 From: "chirs241097@gmail.com" Date: Tue, 17 Feb 2015 14:44:25 +0000 Subject: Rev. 100!!! This is the final release. No more major changes will be made. Further changes of BLR2 will only be bug fixes (BGM addition excluded). Changes: Fix screenshot excluding the info panel. Make Lv-2P4 harder (reporter: BLumia). If it is the first time you start BLR in Windows, resolution in the options menu will be "?". Fixed now. Fixed a critical bug in scorec.h. --- scorec.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scorec.h') diff --git a/scorec.h b/scorec.h index bc8ec34..abca9c6 100644 --- a/scorec.h +++ b/scorec.h @@ -49,9 +49,9 @@ void Putint(int a) void Putll(unsigned long long a) { unsigned long long c1,c2,c3,c4,c5,c6,c7,c8; - c1=a&0xFF00000000000000LL;c1>>=44LL; - c2=a&0x00FF000000000000LL;c2>>=40LL; - c3=a&0x0000FF0000000000LL;c3>>=36LL; + c1=a&0xFF00000000000000LL;c1>>=56LL; + c2=a&0x00FF000000000000LL;c2>>=48LL; + c3=a&0x0000FF0000000000LL;c3>>=40LL; c4=a&0x000000FF00000000LL;c4>>=32LL; c5=a&0x00000000FF000000LL;c5>>=24LL; c6=a&0x0000000000FF0000LL;c6>>=16LL; -- cgit v1.2.3