changeset 159:25b0c4f881c3 src

Fix Menu type display.
author jcdutton
date Sun, 06 Apr 2003 12:45:12 +0000
parents 66a615581b3f
children cd96ef8a6204
files navigation.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/navigation.c	Sun Apr 06 11:07:09 2003 +0000
+++ b/navigation.c	Sun Apr 06 12:45:12 2003 +0000
@@ -114,8 +114,8 @@
       || (this->vm->state.domain == VMGM_DOMAIN) ) {
     /* Get current Menu ID: into *part. */
     vm_get_current_menu(this->vm, part);
-    if (part > -1) {
-      title = 0;
+    if (*part > -1) {
+      *title = 0;
       pthread_mutex_unlock(&this->vm_lock);
       return S_OK;
     }