~ctwm/ctwm/trunk

« back to all changes in this revision

Viewing changes to vscreen.c

  • Committer: Matthew Fuller
  • Date: 2022-10-30 22:12:43 UTC
  • mto: This revision was merged to the branch mainline in revision 697.
  • Revision ID: fullermd@over-yonder.net-20221030221243-ssqjd6h6fcvhcvys
Conditionalize initing numVscreens, which means all uses of it are now
hidden behind the ifdef and it can be moved there itself.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
        vs->wsw    = 0;
37
37
        scr->vScreenList = vs;
38
38
        scr->currentvs   = vs;
 
39
#ifdef VSCREEN
39
40
        scr->numVscreens = 1;
 
41
#endif
40
42
        return;
41
43
}
42
44