summaryrefslogtreecommitdiff
path: root/Source/Library/Common
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2009-12-22 15:03:48 +0100
committerAlexis211 <alexis211@gmail.com>2009-12-22 15:03:48 +0100
commit2c23da1cf398aef420130dde1b86e4c474e3cacb (patch)
tree33f31cf7459fe017c35a313c88e4bfcb6f00eb8a /Source/Library/Common
parent98decfffefc49c82f20a0453cef823f7588e7654 (diff)
parent837290db7d39c8cd852541cb345dc5a57c9274ce (diff)
downloadMelon-2c23da1cf398aef420130dde1b86e4c474e3cacb.tar.gz
Melon-2c23da1cf398aef420130dde1b86e4c474e3cacb.zip
Merge branch 'master' into framework
Conflicts: Melon.img
Diffstat (limited to 'Source/Library/Common')
-rw-r--r--Source/Library/Common/SimpleList.class.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Library/Common/SimpleList.class.h b/Source/Library/Common/SimpleList.class.h
index 2bbbace..5806155 100644
--- a/Source/Library/Common/SimpleList.class.h
+++ b/Source/Library/Common/SimpleList.class.h
@@ -78,7 +78,7 @@ class SimpleList {
u32int size() {
if (m_next == 0)
- return 0;
+ return 1;
return m_next->size() + 1;
}
};