name of yellownotes turned around, makes it easier to monitor them

This commit is contained in:
2025-11-24 21:30:15 +01:00
parent c62a9c7610
commit 4c10bb6b9f

View File

@@ -835,7 +835,7 @@ void YellowNotes::newNote(void *sender)
char buf[200]; char buf[200];
int r = rand() % 1000; int r = rand() % 1000;
sprintf(buf, "%llu-%d", milliseconds_since_epoch, r); sprintf(buf, "%d-%llu", r, milliseconds_since_epoch);
std::string new_note_file = buf; std::string new_note_file = buf;
std::string notes_dir = notesDir(); std::string notes_dir = notesDir();