Skip to content

Commit

Permalink
MEM was accidentally MEM%
Browse files Browse the repository at this point in the history
  • Loading branch information
gsass1 committed Jul 15, 2017
1 parent 6fd206e commit 29e480e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# NTop
htop-like system-monitor for Windows. Because using Task Manager is not cool enough.

![NTop](https://user-images.githubusercontent.com/4589491/28242297-f1df6cea-69a7-11e7-83af-03e40f4bdad4.PNG)
![NTop](https://user-images.githubusercontent.com/4589491/28242345-6a8fe79a-69a9-11e7-96d6-b1af9db9309c.png)

NTop as in Windows NT-op or NukeTop. Whatever you prefer (the latter obviously).

Expand Down
4 changes: 2 additions & 2 deletions ntop.c
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@ int _tmain(int argc, TCHAR *argv[])
{ _T("USER"), 9 },
{ _T("PRI"), 3 },
{ _T("CPU%"), 5 },
{ _T("MEM%"), 9 },
{ _T("MEM"), 9 },
{ _T("THRD"), 4 },
{ _T("TIME"), TIME_STR_SIZE - 1 },
{ _T("EXE"), -1 },
Expand Down Expand Up @@ -976,7 +976,7 @@ int _tmain(int argc, TCHAR *argv[])
{_T("F2"), _T("EXE")},
{_T("F3"), _T("USER")},
{_T("F4"), _T("CPU%")},
{_T("F5"), _T("MEM%")},
{_T("F5"), _T("MEM")},
{_T("F6"), _T("TIME")},
{_T("F7"), _T("EXEC")},
{_T("F9"), _T("KILL")},
Expand Down

0 comments on commit 29e480e

Please sign in to comment.