Skip to content

Commit 97571da

Browse files
authored
Merge pull request #218 from screemerpl/hotfix/classicui
Hotfix/classicui
2 parents 08560ff + c0ad24e commit 97571da

File tree

2 files changed

+62
-7
lines changed

2 files changed

+62
-7
lines changed

src/code/engine/scanner.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ void Scanner::unecm(const string & path) {
7676
void Scanner::updateDB(Database *db) {
7777
shared_ptr<Gui> splash(Gui::getInstance());
7878
splash->logText(_("Updating regional.db..."));
79-
// string path = Util::getWorkingPath() + DirEntry::separator() + "autobleem.list";
80-
// ofstream outfile;
81-
// outfile.open(path);
79+
string path = DirEntry::getWorkingPath() + DirEntry::separator() + "autobleem.list";
80+
ofstream outfile;
81+
outfile.open(path);
8282
if (complete)
8383
for (int i = 0; i < games.size(); i++) {
8484
USBGamePtr data = games[i];
@@ -90,11 +90,11 @@ void Scanner::updateDB(Database *db) {
9090
for (int j = 0; j < data->discs.size(); j++) {
9191
db->insertDisc(i + 1, j + 1, data->discs[j].diskName);
9292
}
93-
// outfile << i + 1 << "," << Util::escape(data->fullPath.substr(0, data->fullPath.size() - 1)) << ","
94-
// << Util::escape(data->saveStatePath.substr(0, data->saveStatePath.size() - 1)) << '\n';
93+
outfile << i + 1 << "," << Util::escape(data->fullPath.substr(0, data->fullPath.size() - 1)) << ","
94+
<< Util::escape(data->saveStatePath.substr(0, data->saveStatePath.size() - 1)) << '\n';
9595
}
96-
// outfile.flush();
97-
// outfile.close();
96+
outfile.flush();
97+
outfile.close();
9898
}
9999

100100
static const char cue1[] = "FILE \"{binName}\" BINARY\n"

src/resources/lang/Slovak.txt

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,3 +270,58 @@ Widescreen:
270270
Širokouhlý obraz:
271271
Year:
272272
Rok:
273+
games
274+
hry
275+
.-= Code C++ and shell scripts =-.
276+
Prokgramovanie v C++ a skriptách shellu
277+
.-= Database maintenance =-.
278+
Údržba databáze
279+
.-= Graphics =-.
280+
Grafika
281+
.-= Localization support =-.
282+
Prekladateľská podpora
283+
.-= Retroboot and emulation cores =-.
284+
Retroboot a emulačné jadrá
285+
.-= Testing =-.
286+
Testujem
287+
AutoBleem resume points not available in RetroArch.
288+
Obnovovacie body z AutoBleemu nie sú pre RetroArch dostupné.
289+
CONFIGURED
290+
KONFIGUROVANÉ
291+
Copy
292+
Kopírovať
293+
Defragment Card
294+
Defragmentovať kartu
295+
Do you want to save memcards data ?
296+
Chcete uložiť dáta z pamäťových kariet ?
297+
Entry
298+
Zápis
299+
Free
300+
Voľné
301+
INTERNAL
302+
ORIGINÁLNE
303+
Link Block
304+
Spojiť blok
305+
Link end Block
306+
Spojiť koniec bloku
307+
Memory Card Manager
308+
Správca Pamäťovej karty
309+
Moving :
310+
Presunuté :
311+
Moving...
312+
Presúvam...
313+
OK
314+
OK
315+
Reload Cards
316+
Znovu načítať karty
317+
RetroBoot Systems
318+
RetroBoot Systémy
319+
Run using RetroBoot(if installed)
320+
Spustiť s použitím RetroBootu (pokiaľ je nainštalovaný)
321+
Select RetroBoot Platform
322+
Vybrať platformu pre RetroBoot
323+
Select Right Card
324+
Vybrať kartu v pravo
325+
Showing:
326+
Unknown Core (AutoDetect)
327+
Neznáme jadro (Autodetekcia)

0 commit comments

Comments
 (0)