diff options
author | Alexis211 <alexis211@gmail.com> | 2009-12-21 00:11:00 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-12-21 00:11:00 +0100 |
commit | a975053605a0f041fd2003792d81c80391527e71 (patch) | |
tree | 6c0c0fac346d111449411a3222911c1a363cbefc /Source/Library/Common/SimpleList.class.h | |
parent | 2a9defea402eec36e075e9e835b804dcc6926748 (diff) | |
download | Melon-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.h | 2 |
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; } }; |