Author Topic: missing text buffer  (Read 1100 times)

Offline Mystic2

  • Aces High CM Staff (Retired)
  • Silver Member
  • ****
  • Posts: 1254
      • http://www.theunforgivenweb.com
missing text buffer
« on: October 11, 2016, 05:57:16 PM »
After this last patch, I have lost my text buffer.  Any ideas?  I tried in the tower, and on the runway... no text. 
FSO Setup CM
~~~THE UNFORGIVEN~~~
"LIVE FREE, DIE WELL"

mystic2@ahevents.org

Offline BHawk51

  • Zinc Member
  • *
  • Posts: 28
Re: missing text buffer
« Reply #1 on: October 11, 2016, 06:22:38 PM »
Same here. I like to see who shoots me down  :rock

Offline guncrasher

  • Plutonium Member
  • *******
  • Posts: 17425
Re: missing text buffer
« Reply #2 on: October 11, 2016, 06:28:31 PM »
use your mouse to highlight it then dragged it up.  I did it.

semp
you dont want me to ho, dont point your plane at me.

Offline Mystic2

  • Aces High CM Staff (Retired)
  • Silver Member
  • ****
  • Posts: 1254
      • http://www.theunforgivenweb.com
Re: missing text buffer
« Reply #3 on: October 11, 2016, 06:50:29 PM »
that is the issue... it isn't there
FSO Setup CM
~~~THE UNFORGIVEN~~~
"LIVE FREE, DIE WELL"

mystic2@ahevents.org

Offline guncrasher

  • Plutonium Member
  • *******
  • Posts: 17425
Re: missing text buffer
« Reply #4 on: October 11, 2016, 07:15:07 PM »
change fov to 80 then move to center.  change it to whatever you want then move boxes back.


semp
you dont want me to ho, dont point your plane at me.

Offline hitech

  • Administrator
  • Administrator
  • *****
  • Posts: 12427
      • http://www.hitechcreations.com
Re: missing text buffer
« Reply #5 on: October 12, 2016, 09:11:40 AM »
deleteing the file filter.cfg in you settings folder will fix your issue,but please post it here before you delete it so I can figure out why.

HiTech

Offline 1Canukk

  • Platinum Member
  • ******
  • Posts: 4864
Re: missing text buffer
« Reply #6 on: October 12, 2016, 10:24:41 AM »
I had the same issue last evening , what are you looking for to us posting here for you to see..

JG11  Sonderstaffel , Geschwader Kommodore

 The P51 D was made by the Gods for men to fly. 
 The FW190 D  was made by men, for Gods to fly .

Offline guncrasher

  • Plutonium Member
  • *******
  • Posts: 17425
Re: missing text buffer
« Reply #7 on: October 12, 2016, 10:40:01 AM »
hitech i moved mine as it was just hidden when i relogged i had to do it again.


semp
you dont want me to ho, dont point your plane at me.

Offline hitech

  • Administrator
  • Administrator
  • *****
  • Posts: 12427
      • http://www.hitechcreations.com
Re: missing text buffer
« Reply #8 on: October 12, 2016, 11:11:49 AM »
Lets play spot the bug.



void wnMoveWindowOnScreen(wnWINDOW * Wnd)
{
grRECT Rect;
grRECT ScreenRect;

   wnGetUsableDeskTopRect(&ScreenRect);
   wnGetWindowRect(Wnd, &Rect);
   grMoveCropRectBotomLeft(&Rect, &ScreenRect);
   wnMoveWindow(Wnd, Rect.Left, Rect.Right, grRECT_WIDTH(Rect), grRECT_HEIGHT(Rect), 1);
}

Offline TheBug

  • Platinum Member
  • ******
  • Posts: 5653
Re: missing text buffer
« Reply #9 on: October 12, 2016, 11:13:49 AM »
Should I go hide?  :headscratch:
“It's a big ocean, you don't have to find the enemy if you don't want to."
  -Richard O'Kane

Offline j500ss

  • Nickel Member
  • ***
  • Posts: 495
Re: missing text buffer
« Reply #10 on: October 12, 2016, 11:20:04 AM »
void?   :headscratch:

Offline Bizman

  • Plutonium Member
  • *******
  • Posts: 9699
Re: missing text buffer
« Reply #11 on: October 12, 2016, 11:35:57 AM »
Don't know anything about coding, but something about spelling: Botom?

Offline hitech

  • Administrator
  • Administrator
  • *****
  • Posts: 12427
      • http://www.hitechcreations.com
Re: missing text buffer
« Reply #12 on: October 12, 2016, 11:49:57 AM »
I wonder who will be at the top of the list to get this answer right.

HiTech


Offline Wiley

  • Plutonium Member
  • *******
  • Posts: 8111
Re: missing text buffer
« Reply #13 on: October 12, 2016, 11:54:35 AM »
Rect.left and rect.right seem like odd parameters for the wnMoveWindow function.  Guessing it should be:

wnMoveWindow(Wnd, Rect.Left, Rect.Top, grRECT_WIDTH(Rect), grRECT_HEIGHT(Rect), 1);

Wiley.
If you think you are having a 1v1 in the Main Arena, your SA has failed you.

JG11

Offline hitech

  • Administrator
  • Administrator
  • *****
  • Posts: 12427
      • http://www.hitechcreations.com
Re: missing text buffer
« Reply #14 on: October 12, 2016, 12:13:05 PM »
Ding Ding Ding we have a winner.

HiTech