Commit 357da539 authored by nanahira's avatar nanahira

fix

parent 84e648f4
...@@ -15,7 +15,7 @@ void DeckManager::LoadLFList() { ...@@ -15,7 +15,7 @@ void DeckManager::LoadLFList() {
char linebuf[256]; char linebuf[256];
wchar_t strBuffer[256]; wchar_t strBuffer[256];
if(fp_custom) { if(fp_custom) {
while(fgets(linebuf, 256, fp)) { while(fgets(linebuf, 256, fp_custom)) {
if(linebuf[0] == '#') if(linebuf[0] == '#')
continue; continue;
int p = 0, sa = 0, code, count; int p = 0, sa = 0, code, count;
...@@ -47,7 +47,7 @@ void DeckManager::LoadLFList() { ...@@ -47,7 +47,7 @@ void DeckManager::LoadLFList() {
(*cur->content)[code] = count; (*cur->content)[code] = count;
cur->hash = cur->hash ^ ((code << 18) | (code >> 14)) ^ ((code << (27 + count)) | (code >> (5 - count))); cur->hash = cur->hash ^ ((code << 18) | (code >> 14)) ^ ((code << (27 + count)) | (code >> (5 - count)));
} }
fclose(fp); fclose(fp_custom);
} }
if(fp) { if(fp) {
while(fgets(linebuf, 256, fp)) { while(fgets(linebuf, 256, fp)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment