diff options
Diffstat (limited to 'Source/Applications/PaperWork/main.cpp')
-rw-r--r-- | Source/Applications/PaperWork/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Applications/PaperWork/main.cpp b/Source/Applications/PaperWork/main.cpp index 0ec6512..1a4c1c7 100644 --- a/Source/Applications/PaperWork/main.cpp +++ b/Source/Applications/PaperWork/main.cpp @@ -28,9 +28,9 @@ int main(Vector<String> args) { outvt << "Logging in to Melon\n"; String user, pw; while (1) { - outvt << "Username : "; + outvt << "Username: "; user = invt.readLine(); - outvt << "Password : "; + outvt << "Password: "; pw = invt.readLine(false); if (!Process::get().authenticatePW(user, pw)) { outvt << "Authentication failed.\n\n"; |