summaryrefslogtreecommitdiff
path: root/Source/Library/Common/SimpleList.class.h
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2009-12-21 00:11:00 +0100
committerAlexis211 <alexis211@gmail.com>2009-12-21 00:11:00 +0100
commita975053605a0f041fd2003792d81c80391527e71 (patch)
tree6c0c0fac346d111449411a3222911c1a363cbefc /Source/Library/Common/SimpleList.class.h
parent2a9defea402eec36e075e9e835b804dcc6926748 (diff)
downloadMelon-a975053605a0f041fd2003792d81c80391527e71.tar.gz
Melon-a975053605a0f041fd2003792d81c80391527e71.zip
Made status bar into a namespace, and added functionnalities
Diffstat (limited to 'Source/Library/Common/SimpleList.class.h')
-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;
}
};